home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / graphics / rvga01.zip / VGA_BIOS.H < prev    next >
C/C++ Source or Header  |  1994-08-10  |  558b  |  27 lines

  1. /**********************************************
  2.  
  3.     Prototypes for VGArtns.c
  4.  
  5. **********************************************/
  6.  
  7. #include "global.h"
  8.  
  9. #ifndef __VGA_BIOS_H
  10. #define __VGA_BIOS_H
  11.  
  12.  
  13. /**********************************************
  14.  
  15.     Prototypes
  16.  
  17. **********************************************/
  18.  
  19. extern UBYTE VB_Page;
  20.  
  21. extern void VB_SetMode(UWORD mode);
  22. extern UWORD VB_GetMode(void);
  23. extern void VB_SetCursor(UBYTE type);
  24. extern void VB_SetCursorPos(UBYTE x, UBYTE y);
  25. extern void VB_GetCursorPos(UBYTE *x, UBYTE *y);
  26. #endif
  27.